/* ========== Floating Button ========== */

.wia-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999999999;
    line-height:0;
}

.wia-btn img.small{width:44px;height:44px;}
.wia-btn img.medium{width:58px;height:58px;}
.wia-btn img.large{width:72px;height:72px;}

.wia-btn img{
    border-radius:50%;
    display:block;
}


/* ========== Popup Window ========== */

.wia-popup{
    position:fixed;
    bottom:20px;
    right:20px;
    width:320px;
    background:#f0f8f0;
    border-radius:20px;
    overflow:hidden;         /* NO LINE ANYWHERE */
    display:none;
    z-index:999999999;
    box-shadow:0 12px 35px rgba(0,0,0,0.25);
    font-family:"Segoe UI",sans-serif;
    border:none;
}


/* Header */

.wia-header{
    background:#25D366;
    color:#fff;
    padding:15px;
    font-size:17px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wia-close{
    cursor:pointer;
    font-size:22px;
    font-weight:bold;
}


/* Chat Body */

.wia-body{
    padding:20px 18px 22px 18px;
    max-height:260px;
    overflow-y:auto;
    background:#f0f8f0;
    border:none;
}


/* ========== Chat Bubbles ========== */

.wia-bubble-1,
.wia-bubble-2 {
    background:#fff;
    padding:12px 18px;
    font-size:15px;
    border-radius:18px;
    margin-bottom:14px;
    max-width:85%;
    display:inline-block;
    width:auto;
    box-shadow:0 3px 12px rgba(0,0,0,0.07);
    position:relative;
    line-height:1.4;
    border:none;
}

/* Bubble Arrow */
.wia-bubble-1:before,
.wia-bubble-2:before {
    content:"";
    position:absolute;
    top:-6px;
    left:18px;
    border-width:0 8px 8px 8px;
    border-style:solid;
    border-color:transparent transparent #ffffff transparent;
}


/* ========== Chat Button ========== */

.wia-chat-btn{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-top:10px;
    border:none;
    float:inline-end;
}

.wia-chat-btn:after{
    content:'➤';
    font-size:12px;
    position:relative;
    top:1px;
}

/* Remove underline globally */
.wia-chat-btn,
.wia-chat-btn:hover,
.wia-chat-btn:focus {
    text-decoration:none !important;
    border:none !important;
}

/* NO WHITE GAP AT BOTTOM */
.wia-popup,
.wia-body,
.wia-btn {
    border:none !important;
}
